/*
**  Header Bar
*/

header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var( --dark );
    padding: 10px 0;
    position: sticky;
    top: 0;
}


header li, a, button {
    font-family: "Roboto", serif;
    font-size: 20px;
    color: #ccc;
    text-decoration: none;
}


header .logo {
    cursor: pointer;
    height: 100%;
}


header .logo-container {
    width: 500px;
    height: 100%;
    padding-left: 50px;
}

header .nav-links {
    list-style: none;
}

header .nav-links ul {
    margin: 0;
}

header .nav-links li {
    display: inline-block;
    height: 100%;
    line-height: 80px;
    padding: 0px 10px;;
}

header .nav-links li a {
    display: block;
    padding: 0 10px;
    transition: all 0.5s ease 0s;
}

header .nav-links li a:hover {
    display: block;
    color: var( --light );
}



header .button-container {
    display: flex;
    width: 300px;
    justify-content: flex-end;
    padding-right: 50px;
}

header .cta button {
    height: 40px;
    padding: 0 10px;
    text-align: center;
    cursor: pointer;
    background-color: var( --light );
    color: var( --black );
}

